home *** CD-ROM | disk | FTP | other *** search
/ Komputer for Alle 1998 #2 / K-CD 02-98.ISO / wing / timewing.h_ / timewing.h
C/C++ Source or Header  |  1995-06-20  |  1KB  |  41 lines

  1. /**************************************************************************
  2.  
  3.     TIMEWING.H - A timing demo for WinG
  4.  
  5.  **************************************************************************/
  6. /**************************************************************************
  7.  
  8.     (C) Copyright 1994 Microsoft Corp.  All rights reserved.
  9.  
  10.     You have a royalty-free right to use, modify, reproduce and 
  11.     distribute the Sample Files (and/or any modified version) in 
  12.     any way you find useful, provided that you agree that 
  13.     Microsoft has no warranty obligations or liability for any 
  14.     Sample Application Files which are modified. 
  15.  
  16.  **************************************************************************/
  17.  
  18. /* Menu Items */
  19. #define MENU_OPEN       1
  20. #define MENU_ABOUT      2
  21. #define MENU_EXIT       3
  22.  
  23. #define MENU_TIMEALL    4
  24. #define MENU_1TO1       5
  25. #define MENU_1TO2       6
  26. #define MENU_1TOALMOST2 7
  27.  
  28. #define MENU_TIME 50
  29.  
  30.  
  31.  
  32. /****************************************************************************
  33. ****************************************************************************/
  34.  
  35. #ifdef DEBUG
  36.     extern void FAR CDECL dprintf(LPSTR szFormat, ...);
  37.     #define DPF dprintf
  38. #else
  39.     #define DPF ; / ## /
  40. #endif
  41.